From 7346a00add6d91635996b7021f5c4e0d76204d86 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 29 Nov 2004 05:45:38 +0000 Subject: [PATCH] Use the perl found by configure. (#149826, Morten Welinder) 2004-11-29 Matthias Clasen * gtk/Makefile.am (gtkalias.h): * gdk/Makefile.am (gdkalias.h): Use the perl found by configure. (#149826, Morten Welinder) --- ChangeLog | 6 ++++++ ChangeLog.pre-2-10 | 6 ++++++ ChangeLog.pre-2-6 | 6 ++++++ ChangeLog.pre-2-8 | 6 ++++++ gdk-pixbuf/ChangeLog | 7 ++++++- gdk-pixbuf/Makefile.am | 4 ++-- gdk/Makefile.am | 4 ++-- gtk/Makefile.am | 4 ++-- 8 files changed, 36 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 07376c7cdb..ebc3329034 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-11-29 Matthias Clasen + + * gtk/Makefile.am (gtkalias.h): + * gdk/Makefile.am (gdkalias.h): Use the perl found by + configure. (#149826, Morten Welinder) + 2004-11-28 Matthias Clasen * gtk/gtkwidget.h (gtk_requisition_get_type): diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 07376c7cdb..ebc3329034 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2004-11-29 Matthias Clasen + + * gtk/Makefile.am (gtkalias.h): + * gdk/Makefile.am (gdkalias.h): Use the perl found by + configure. (#149826, Morten Welinder) + 2004-11-28 Matthias Clasen * gtk/gtkwidget.h (gtk_requisition_get_type): diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 07376c7cdb..ebc3329034 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +2004-11-29 Matthias Clasen + + * gtk/Makefile.am (gtkalias.h): + * gdk/Makefile.am (gdkalias.h): Use the perl found by + configure. (#149826, Morten Welinder) + 2004-11-28 Matthias Clasen * gtk/gtkwidget.h (gtk_requisition_get_type): diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 07376c7cdb..ebc3329034 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +2004-11-29 Matthias Clasen + + * gtk/Makefile.am (gtkalias.h): + * gdk/Makefile.am (gdkalias.h): Use the perl found by + configure. (#149826, Morten Welinder) + 2004-11-28 Matthias Clasen * gtk/gtkwidget.h (gtk_requisition_get_type): diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index fa573386a1..9f363bd89f 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,6 +1,11 @@ +2004-11-29 Matthias Clasen + + * Makefile.am (gdk-pixbuf-alias.h): Use the perl found by + configure. (#149826, Morten Welinder) + Sun Nov 28 12:11:21 2004 Manish Singh - * makegdkpixbufalias.pl: ytpo fix, so attributes are really + * makegdkpixbufalias.pl: Typo fix, so attributes are really propagated. 2004-11-28 Matthias Clasen diff --git a/gdk-pixbuf/Makefile.am b/gdk-pixbuf/Makefile.am index ee41f7063b..55ed65ba89 100644 --- a/gdk-pixbuf/Makefile.am +++ b/gdk-pixbuf/Makefile.am @@ -40,10 +40,10 @@ uninstall-ms-lib: endif gdk_pixbuf.def: gdk-pixbuf.symbols - (echo -e EXPORTS; cpp -P -DINCLUDE_VARIABLES $(srcdir)/gdk-pixbuf.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > gdk_pixbuf.def + (echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES $(srcdir)/gdk-pixbuf.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > gdk_pixbuf.def gdk-pixbuf-alias.h: gdk-pixbuf.symbols - $(srcdir)/makegdkpixbufalias.pl < $(srcdir)/gdk-pixbuf.symbols > gdk-pixbuf-alias.h + $(PERL) $(srcdir)/makegdkpixbufalias.pl < $(srcdir)/gdk-pixbuf.symbols > gdk-pixbuf-alias.h if OS_UNIX TESTS = abicheck.sh diff --git a/gdk/Makefile.am b/gdk/Makefile.am index 8518c1e94b..8e69a3aba2 100644 --- a/gdk/Makefile.am +++ b/gdk/Makefile.am @@ -177,10 +177,10 @@ uninstall-ms-lib: endif gdk.def: gdk.symbols - (echo -e EXPORTS; cpp -P -DGDK_WINDOWING_WIN32 -DINCLUDE_VARIABLES $(srcdir)/gdk.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > gdk.def + (echo -e EXPORTS; $(CPP) -P -DGDK_WINDOWING_WIN32 -DINCLUDE_VARIABLES $(srcdir)/gdk.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > gdk.def gdkalias.h: gdk.symbols - $(srcdir)/makegdkalias.pl < $(srcdir)/gdk.symbols > gdkalias.h + $(PERL) $(srcdir)/makegdkalias.pl < $(srcdir)/gdk.symbols > gdkalias.h if OS_UNIX TESTS = abicheck.sh diff --git a/gtk/Makefile.am b/gtk/Makefile.am index e86a3302ef..0990434402 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -71,10 +71,10 @@ uninstall-ms-lib: endif gtk.def: gtk.symbols - (echo -e EXPORTS; cpp -P -DINCLUDE_VARIABLES -DG_OS_WIN32 $(srcdir)/gtk.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > gtk.def + (echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES -DG_OS_WIN32 $(srcdir)/gtk.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > gtk.def gtkalias.h: gtk.symbols - $(srcdir)/makegtkalias.pl < $(srcdir)/gtk.symbols > gtkalias.h + $(PERL) $(srcdir)/makegtkalias.pl < $(srcdir)/gtk.symbols > gtkalias.h if OS_UNIX TESTS = abicheck.sh -- 2.30.2